947254fb91b5afc79124c2da37a2eebb84ebb775,heron/scheduler-core/src/java/com/twitter/heron/scheduler/utils/SchedulerUtils.java,SchedulerUtils,schedulerCommand,#Config#Config#List#,61
Before Change
commands.add("-cp");
// Construct the complete classpath to start scheduler
String completeSchedulerProcessClassPath = new StringBuilder()
.append(Context.schedulerSandboxClassPath(config)).append(":")
.append(Context.packingSandboxClassPath(config)).append(":")
.append(Context.stateManagerSandboxClassPath(config))
.toString();
commands.add(completeSchedulerProcessClassPath);
commands.add("com.twitter.heron.scheduler.SchedulerMain");
After Change
commands.add("-cp");
// Construct the complete classpath to start scheduler
String completeSchedulerProcessClassPath = String.format("%s:%s:%s",
Context.schedulerClassPath(config),
Context.packingClassPath(config),
Context.stateManagerClassPath(config));
commands.add(completeSchedulerProcessClassPath);
commands.add("com.twitter.heron.scheduler.SchedulerMain");